Part Number Hot Search : 
ATS02 LH5225 YELLOW MMP7022 MAX680 AUSD05BT MC68331 K3561
Product Description
Full Text Search
 

To Download AN1276 Datasheet File

  If you can't view the Datasheet, Please click here to try to view without PDF Reader .  
 
 


  Datasheet File OCR Text:
  AN1276/1100 1/18 AN1276 application note bldc motor start routine for the st72141 microcontroller by microcontroller division applications introduction the st72141 microcontroller has been designed by stmicroelectronics to control bldc mo- tors in sensor and sensorless modes with a patented method for detecting the back-electro- motive force zero-crossing event (see application note an1130). the purpose of this docu- ment is to describe the motor start-up routine for the st72141 microcontroller. the start-up routine for a bldc motor using the st72141 microcontroller in sensorless mode consists of several phases. the first phase is the rotor prepositioning phase. in sensorless mode, we do not know the position of the rotor before starting the motor, thats why we need to have a prepositioning phase. then, a starting ramp table is applied to the motor in order to accelerate it and to be able to detect the information needed to switch to auto-commutated mode, this mode is called synchronous mode (see application note an1083). during these different phases, several parameters of the generic software (supplied with an1083) have to be taken into account. these parameters will need to be modified, depending on the motor be- haviour. in this application note, we will explain the role of each of these parameters and the steps you need to follow to define the correct start-up parameters for your own motor. related documentation an1082: description of the st72141 motor control peripheral an1083: st72141 bldc motor control software and flowchart examples an1129: pwm management for permanent magnet dc motor drives using the st72141 an1130: brushless dc motor drive with st72141 note: contact stmicroelectronics for detailed technical information on startup algorithms for compressors (most leading manufacturers supported). 1
2/18 table of contents 18 introduction . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1 1 prepositioning phase . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 3 1.1 configuring the prepositioning step . . . . . . . . . . . . . . . . . . . . . . . . . 3 1.2 prepositioning current ramp . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 5 2 starting ramp table . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 7 2.1 starting in the right direction . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 7 2.2 the current level during the starting ramp . . . . . . . . . . . . . . . . . 9 2.3 start sequence parameters . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 10 2.3.1 forced synchronous mode . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 10 2.3.2 consecutive zero-crossing events . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 11 2.3.3 software demagnetization . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 11 2.4 applying decreasing step times . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 12 2.5 starting ramp table parameter guidelines . . . . . . . . . . . . . . . . . 14 3 switching to auto-commutated mode . . . . . . . . . . . . . . . . . . . . . . . . . . . . 15 3.1 the last step in synchronous mode . . . . . . . . . . . . . . . . . . . . . . . . . 15 3.2 the first step in auto-commutated mode . . . . . . . . . . . . . . . . . . . . 16 4 conclusion: how to parameter your motor for the start sequence . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 17 2
3/18 bldc motor start routine for the st72141 microcontroller 1 prepositioning phase in sensorless mode, the position of the rotor before starting the motor is not known. a prepo- sitioning phase is needed in this case either to determine the position of the rotor or to place it in an known position. with the st72141, we use the prepositioning phase to place the rotor in an known location. this prepositioning phase is done entirely by software. 1.1 configuring the prepositioning step in the st72141, the motor control is based on a six-step drive with a standard triple half bridge (see application note an1130). figure 1 shows the six-step drive. figure 1. six-step drive we see in figure 1 that the six-step drive consists of a sequence where each winding is not energized at 2 times in the sequence. when a winding is not energized, it allows us to read the information needed (see application note an1130). the step configuration sequence is (t1,t4), (t1,t6), (t3,t6), (t3,t2), (t5,t2), (t5,t4). during the prepositioning phase, we want to put the rotor in a specific, known position. so, throughout this phase, we will keep a constant current direction in the windings to make the rotor move to the desired position. in order to reduce the oscillations of the rotor when approaching its starting position, we apply current to all the windings. this means that all the windings will be energized during the prep- ositioning phase. this will be an intermediary position between two of the six step positions. 2 123456 t t t a b c t1 t1 t3 t3 t5 t5 t4 t6 t6 t2 t2 t4 current in winding a,b,c u v w 1 6 5 4 3 c a t5 t6 t3 t1 t4 t2 b +300v dc - + i
4/18 bldc motor start routine for the st72141 microcontroller during the prepositioning phase, the t1, t4 and t6 switches are switched on. this means that when we will apply a current in this configuration, it will be positive in phase a and negative in phases b and c with half of the phase a value. this will bring the rotor to the intermediary po- sition shown in figure 2. figure 2. rotor start position so, switching on t1, t4 and t6 will bring the rotor to the position shown in figure 2 as soon as a current is applied. since this position is known, you can then start the motor in the right di- rection with the correct step configuration for the starting ramp table (see section 2). u v w c a t5 t6 t3 t1 t4 t2 b +300v dc - + i rotor position
5/18 bldc motor start routine for the st72141 microcontroller 1.2 prepositioning current ramp in order to bring the motor from its initial position (unknown by the user) to the prepositioning position, we will apply a current associated with the prepositioning step configuration (t1,t4,t6). instead of applying a constant current value directly and waiting until the rotor ar- rives at the start position, we apply a progressive current level for a long enough time to bring the rotor in the desired position. depending on its inertia, the rotor needs a certain level of cur- rent to move. applying a strong current level directly to the rotor will make it move too quickly and this will make it oscillate around its final position. thats why it is better to apply a progres- sive current level using a prepositioning current ramp. this ramp is made up of a certain number of steps, each step has the same length (this will give the prepositioning phase length) and each step has a corresponding current level. figure 3 shows a waveform example of a 25- step current ramp, each step is 30ms long. this means a prepositioning phase of 750ms (30*25). figure 3. prepositioning current ramp the reference current or the reference voltage (depending if the motor is in current mode or in voltage mode) is given by the timer a pwm signal (see application notes an1130 and an1082). this reference is represented by the y axis in figure 3, it is given by the duty cycle of the pwm signal. at a fixed pwm signal frequency, increasing the duty cycle will increase the reference. in this case, what will happen in the prepositioning phase, is that 25 times for a 30ms period, a different current level is applied with the same step configuration t1, t4 and t6. during this phase, t4 and t6 are switched on and the pwm signal is applied on t1 (see application notes an1130 and an1082 for the pwm signal application). the combined action of a constant step configuration and a progressive current ramp will bring the rotor into an in- 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 consecutive steps 0% 10% 20% 30% 40% 50% current level. pwm duty cycle data a
6/18 bldc motor start routine for the st72141 microcontroller termediary position, the start position (figure 2). this position is known by the user and the start sequence of the motor can begin. depending on the motor, a longer or a shorter prepositioning phase is needed. this is pro- duced by defining a smaller or greater number of steps in the current ramp or making each step longer or shorter. the current level at each step and the ramp waveform also need to be modulated according to the motor. a low level at the end of the ramp may not be sufficient to make the rotor move and if the level is too high, it may cause the rotor to oscillate around the start position. some motors will need a ramp with an exponential waveform, others a linear waveform. several tests are needed to determine the best ramp for the motor, they consist of applying different ramps and examining the rotor behaviour. figure 4 shows what is seen with a current probe on phase a of the motor during the prepositioning phase when applying the ramp in figure 3. figure 4. current in phase a during the preposition phase we see in this figure that the current is applied progressively to the motor. the progression is linear. at the end of the prepositioning ramp, there is a current of 2 amps in the motor. first step in the ramp table (t1,t6) preposition phase (t1, t4, t6)
7/18 bldc motor start routine for the st72141 microcontroller 2 starting ramp table once the rotor is in its start position, we apply a starting ramp table to the motor. the purpose of this ramp table is to accelerate the motor in order to detect the back-emf zero-crossing in- formation as soon as possible to in order to be able to switch to auto-commutated mode (see application note an1130). this ramp table is made up of consecutively decreasing step times that are applied to the motor. several conditions, set by the user and needed by the microcon- troller, have to be met to allow the motor to enter auto-commutated mode. the purpose of this section is to list the different parameters corresponding to the different conditions that apply in the starting phase of a bldc motor controlled with the st72141 and to explain their influence on the motor behaviour. 2.1 starting in the right direction the six-step drive consists (as shown in figure 1) of a succession of six different step config- uration. in figure 1, the step configuration sequence is: step 1: switches t1 and t4 step 2: switches t1 and t6 step 3: switches t3 and t6 step 4: switches t3 and t2 step 5: switches t5 and t2 step 6: switches t5 and t4 then the process goes back to step 1 etc.... this step configuration sequence will make, in our case, the rotor turn in the anticlockwise di- rection after the prepositioning phase. figure 5 shows two different rotor positions corre- sponding to two different step configurations starting from the prepositioning position. figure 5. two different rotor positions corresponding to two step configurations we can see in section figure 5 that starting from the initial position with the t1, t4 step con- figuration makes the rotor turn clockwise. with the step configuration sequence defined in the software and listed above, our motor is intended to turn anticlockwise in the application so the first time we need to begin the sequence with the second step configuration which is t1, t6. c a rotor start position (t1,t4,t6) rotor position in t1,t6 step configuration c a rotor start position (t1,t4,t6) rotor position in t1,t4 step configuration clockwise anticlockwise bb t6 t4 t1 t6 t4 t1
8/18 bldc motor start routine for the st72141 microcontroller this step configuration, as shown in figure 3, makes the motor turn anticlockwise from the in- itial position. if the motor had to turn clockwise in our application, the first step configuration would have been t1,t4 in the starting ramp and the step configuration sequence in the six steps principle would have been inverted. you need to modify this parameter if the initial position of the motor is different from the ex- ample given above, and some thought is required to determine the correct first step configu- ration to apply after the prepositioning phase.
9/18 bldc motor start routine for the st72141 microcontroller 2.2 the current level during the starting ramp a specific reference current or voltage can be applied in the starting ramp table to accelerate the motor. this specific reference can be totally independent from the reference applied to the motor and chosen by the user when the motor is in auto-commutated mode. this current or voltage level during the starting ramp is chosen by the user and is set by software. once again, as it is the case during the prepositioning phase and in auto-commutated mode, the ref- erence is given by the timer a with a pwm signal (combined with the internal clock signal in current mode). see application note an1130. at low speed, the back-emf signal is weak and so harder to detect, applying a quite strong level of current during the starting ramp makes the back-emf signal stronger and easier to de- tect at the zero-crossing event. to avoid a surge of current at the beginning of the starting ramp after the prepositioning phase, it is better that the current level at the end of the prepositioning ramp is close to the cur- rent level during the starting ramp table. figure 6 shows the prepositioning phase and the starting phase of the motor seen in the phase a with a current probe on an oscilloscope. this figure has been obtained with the prepositioning ramp shown in figure 3 and a pwm duty cycle of 45% in current mode for the current level during the starting ramp. figure 6. prepositioning phase & starting ramp table in current mode (45% duty cycle) we can see in figure 6 that the current level at the end of the prepositioning phase is the same as the one applied during the starting ramp table. this avoids a surge of current at the transi- tion. end of prepositioning phase beginning of the starting ramp table with 45% duty cycle
10/18 bldc motor start routine for the st72141 microcontroller 2.3 start sequence parameters the starting ramp table consists of applying consecutively decreasing step times to the motor with a fixed current level for all the steps in order to accelerate the motor. the number of steps in the ramp is software programmable, in our case, we have chosen a 38-step ramp table. in all cases, if the motor arrives at the 38th step and has not yet switched to auto-commutated mode, it is better to stop the motor and to start it again. in normal use, the motor switches to auto-commutated mode after a few steps of the ramp table as soon as the detection of the back-emf zero crossing event is enabled by the software. the start sequence of the motor is based on different parameters that can be set by software. at first you can set the number of steps in the starting ramp table without enabling the detec- tion of the back-emf zero-crossing event (z event). these steps (without z detection enabled) are referred to as forced synchronous mode, described in detail in section 2.3.1. then, you can set the number of consecutive z events that have to be detected during the starting ramp table in order to switch to auto-commutated mode (see section 2.3.2). finally you can set the software demagnetization time during the starting ramp (see section 2.3.3). the end of de- magnetization event is very important in the motor start sequence. the purpose of the next two sections is to explain the role of these parameters on the start sequence of the motor. 2.3.1 forced synchronous mode during the first few steps at the beginning of the starting ramp table, the detection of the back- emf zero-crossing event (z) is disabled by software. these steps with z detection disabled in- itially permit the motor to become stabilized, after these steps the motor will have accelerated enough to have a measurable back-emf signal and zero-crossing event. normally, the number of steps with z detection disabled is equal to 1 mechanical cycle of the motor = p elec- trical cycles with p = number of motor pole pairs and 1 electrical cycle = 6 steps. it is not man- datory to disable z detection for the first few steps. z detection can also be enabled immedi- ately at the beginning of the starting ramp table but generally you will see that the conditions for switching to auto-commutated mode are true only after a few steps. so, waiting a few steps before enabling z detection will avoid a parasitic detection. if you choose to wait one mechanical cycle before enabling z detection, you have to pay at- tention to the fact that, depending on the number of motor pole pairs, this number of steps without z detection can be quite high, but it must not be too near to the total number of steps in the starting ramp table. for example if you have a 10-pole motor, the number of steps without z detection will be 5*6=30 and if the whole starting ramp is made up of 38 steps, 30 is too high, it has to be reduced. otherwise, if z detection is enabled only after 30 steps, you risk arriving at the end of the starting ramp table without detecting enough z events. the motor wont switch to auto-commutated mode and will be stopped. this depends of course on the number of consecutive z events you want to detect before switching to auto-commutated mode.
11/18 bldc motor start routine for the st72141 microcontroller on the other hand, if the number of steps without z detection is too low, the motor will not be stable enough before the first z event detection. 2.3.2 consecutive zero-crossing events after forced synchronous mode, zero-crossing event (z) detection is enabled. you can set the number of consecutive zero-crossing events to be detected by the microcontroller before allowing the motor to switch to auto-commutated mode. this number is a very important pa- rameter. if this number is too high like 4 or 5 consecutive zero-crossing events, the risk is that the motor will finish the ramp table after the microcontroller has detected 2 or 3 consecutive z events but without reaching the target number of z events needed to switch to auto-commu- tated mode and the motor will be stopped at the end of the starting ramp. on the other hand, if this number is equal to 1, the risk is that one event will be detected, then software enables auto-commutated mode but the motor is not stabilized enough and in the first step in auto- commutated mode, there will be no z event and the motor will stop. two or three consecutive z events are enough to allow the motor to switch to auto-commutated mode in a stable state. 2.3.3 software demagnetization during the start ramp, hardware demagnetization and software demagnetization are per- formed on alternate steps. this means that in the steps where we wait for a falling edge of the phase voltage signal for the end of demagnetization event detection there will be a software demagnetization and in the steps where the end of demagnetization event will be a rising edge of the phase voltage signal, there will be a hardware demagnetization. each software demag- netization time is equal to 1.25 times the hardware demagnetization time in the previous step. this means that the software demagnetization time is directly proportional to the hardware de- magnetization time. avoid setting the factor too high because if the software demagnetization time is too long, the risk is that the microcontroller wont see the zero-crossing event, espe- cially during the start sequence where the signal is quite weak. on other hand, this factor has to be greater than 1 to be sure that the end of demagnetization event really happened. even if we choose a software demagnetization, the time set for that event has to be long enough to be appear like the corresponding hardware demagnetization event.
12/18 bldc motor start routine for the st72141 microcontroller 2.4 applying decreasing step times the difficulty in defining the right starting ramp table for a motor lies in the fact that the se- quence of decreasing step times must accelerate the motor enough to be able to detect a zero-crossing event after forced synchronous mode and still obtain the target number of con- secutive events to switch to auto-commutated mode. in the same way as for the preposi- tioning ramp, the waveform of the starting ramp table will depend on the rotor inertia and the motor load. you can determine the best ramp table for a given motor by performing several tests. figure 7 shows a waveform example for a starting ramp table with 38 steps. 38 steps is just an example, we have chosen this number for our software but you can set a higher or a lower number of steps. figure 7. example of a 38-step starting ramp table this starting ramp has an exponential acceleration. some motors will need a linear accelera- tion. the best way to find the right ramp table is to put a flag in the software on the zero- crossing event detection and then to test several ramps and see the result on an oscilloscope with the current signal on a phase to see the ramp table and a probe on the flag for zero- crossing detection. when a ramp makes the rotor move and accelerates it enough to detect several zero-crossing events and at least 2 consecutive events before the end of the ramp, it is a good ramp for that motor. figure 8 shows a view using an oscilloscope with a current probe on the phase a and another probe on the flag for zero-crossing detection during a start sequence. 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 number of steps 0 20 40 60 80 100 120 140 step time (ms) data a starting ramp table
13/18 bldc motor start routine for the st72141 microcontroller figure 8. starting ramp table and zero-crossing event overview we see 3 different phases in these waveforms in figure 8. first phase: the end of the prepositioning phase second phase: forced synchronous mode (no zero-crossing event detection) third phase: zero-crossing detection before switching to auto-commutated mode the flag for the zero-crossing event in the software is set on the commutation event and reset on the back-emf zero-crossing event in this example. validation of z detection at the 12th step of the ramp first zero-crossing detection end of preposition phase
14/18 bldc motor start routine for the st72141 microcontroller 2.5 starting ramp table parameter guidelines three main parameters are important during the start sequence after the prepositioning phase. the number of steps in forced synchronous mode (no zero-crossing event detection) the number of consecutive zero-crossing events before switching to auto-commutated mode the starting ramp table waveform (application of decreasing step times) each of these parameters has an influence on the motor behaviour during the start sequence and is software programmable. the number of steps in forced synchronous mode needs to be large enough to obtain a well- stabilized motor. too high a number, too close to the total number of starting ramp steps number will result in finishing the ramp table without detecting enough consecutive zero- crossing events to switch to auto-commutated mode. the number of consecutive zero-crossing events is also very important. too high a number has the same effect as too high a number of steps in forced synchronous mode, meaning that we risk arriving at the end of the starting ramp table without detecting enough zero-crossing events. too low a number will cause the motor to switch too quickly in auto-commutated mode with the risk that the motor stops because it is not stabilised enough. the starting ramp table waveform has to make the rotor move and accelerate it enough to allow the detection of the target number of consecutive zero-crossing events to switch to auto- commutated mode. finding the best ramp table for the motor is achieved by performing several tests with an os- cilloscope to see the waveform and the zero-crossing detection.
15/18 bldc motor start routine for the st72141 microcontroller 3 switching to auto-commutated mode at the end of the start sequence, once the microcontroller has detected the target number of zero-crossing events, it switches to auto-commutated mode. this switchover is very important for the motor behaviour and once again, you have to pay a lot of attention to programming the parameters. this is described in detail in the two following sections. 3.1 the last step in synchronous mode for example, if you have set a target of two consecutive zero-crossing events before switching to auto-commutated mode, when the microcontroller detects the second one, it will memorize that the motor is in its last step in synchronous mode (see application note an1083). in the generic software (supplied with an1083), the last zero-crossing event detected before switching to auto-commutated mode is centered in this step. you can place this event wher- ever you want in the step because in synchronous mode, the step time is imposed and not computed automatically like in auto-commutated mode (see application note an1130). centering this last zero-crossing event on the corresponding step allows you to predict the place where the next event will be. the step after this last step in synchronous mode will be the first step in auto-commutated mode, we do not know where the zero-crossing event will take place on this step but we are sure that there will be one. the time of this first step in auto- commutated mode depends on when the zero-crossing event occurs because the delay will be automatically computed, so, we do not know the step time of the first step in auto-commu- tated mode. centering the event on the last step in synchronous mode allows us to have a step time in this step closer to the next step in auto-commutated mode than if we had not cen- tered the event. figure 9 shows what we can see on an oscilloscope when the switch to auto- commutated mode occurs.
16/18 bldc motor start routine for the st72141 microcontroller figure 9. switching to auto-commutated mode we can see in figure 9 that the last zero-crossing event is centered in the last step before switching to auto-commutated mode. 3.2 the first step in auto-commutated mode during the first step in auto-commutated mode, one parameter is very important, the delay factor (see application notes an1130 and an1082). this parameter is the one used by the microcontroller to automatically compute the delay between the actual zero-crossing event on this step and the next commutation event. the operation to find the real delay done by the mi- crocontroller is: 8-bit timer value* delay factor/32 (see application notes an1130 and an1082). in auto-commutated mode, the timer contains the current step time value (this means the time between 2 zero-crossing events) but in the first step in auto-commutated mode, the timer contains the value between the last commutation event and the actual zero- crossing event on the step. this because in synchronous mode, the timer is reset on a com- mutation event and in auto-commutated mode, the timer is reset on a zero-crossing event. so, because of this particularity, the delay factor in the first step in auto-commutated mode can be different from the factor used later. this first factor value has to approximately center the zero- crossing event. the unit of the delay factor is 1/32, so a delay factor of 32 will center the zero- crossing event in the first step in auto-commutated mode. a delay factor of 8 will put the zero- crossing event at 3/4 of the step. last step in synchronous mode first step in auto-commutated mode zero-crossing events are centered in the steps
17/18 bldc motor start routine for the st72141 microcontroller 4 conclusion: how to parameter your motor for the start sequence the first parameter you have to set for the start sequence is the prepositioning ramp. this ramp has to be tested in order to avoid the rotor oscillating when it is at the start position with the initial step configuration. you have to apply enough current to make the rotor move but a too high level of current during the whole ramp will induce oscillations. then, when you have fixed the prepositioning current ramp, the second parameter you have to set is the starting ramp table with the level of current during this ramp table. the starting ramp table has to accelerate the rotor enough to be able to detect the zero-crossing event of the back-emf signal. the level of current during this ramp will help to accelerate the rotor. you can test several ramps with different current levels and connecting an oscilloscope with a cur- rent probe on one of the motor phases will help you to see the behaviour of the motor. afterwards you set the conditions for the motor to switch to auto-commutated mode, this means setting the target number of consecutive zero-crossing events. to set this number, it is better to set a flag on a zero-crossing interrupt in the software and use an oscilloscope to see how the detection of zero-crossing events appears throughout the whole ramp. to do this, it is better at first to enable the detection of the zero-crossing events immediately at the beginning of the starting ramp. this will allow you to see when there are 2 or 3 or more zero-crossing events in the ramp and this will help you to set the number of steps without z detection and the target number of consecutive zero-crossing events before switching to auto-commutated mode. switching to auto-commutated mode: once the starting ramp and the conditions for switching to auto-commutated mode are fixed, there are two parameters that you have to set for auto-commutated mode. the start delay factor in the first step in auto-commutated mode (this will determine the position of the zero- crossing event detected in the first step in auto-commutated mode) and the delay factor for auto-commutated mode after the first step. be aware that they can have different values. to set all the preceding parameters for your own motor will take some time. each of them has a specific role and this means you will have to perform several tests to determine the best values for all of them. you will need to use an oscilloscope to carry out these tests, it will help you understand the motor behaviour.
18/18 bldc motor start routine for the st72141 microcontroller the present note which is for guidance only aims at providing customers with information regarding their products in order for them to save time. as a result, stmicroelectronics shall not be held liable for any direct, indirect or consequential damages with respect to any claims arising from the content of such a note and/or the use made by customers of the information contained herein in connexion with their products. information furnished is believed to be accurate and reliable. however, stmicroelectronics assumes no responsibility for the co nsequences of use of such information nor for any infringement of patents or other rights of third parties which may result from its use. no license is granted by implication or otherwise under any patent or patent rights of stmicroelectronics. specifications mentioned in this publicati on are subject to change without notice. this publication supersedes and replaces all information previously supplied. stmicroelectronics prod ucts are not authorized for use as critical components in life support devices or systems without the express written approval of stmicroele ctronics. the st logo is a registered trademark of stmicroelectronics ? 2000 stmicroelectronics - all rights reserved. purchase of i 2 c components by stmicroelectronics conveys a license under the philips i 2 c patent. rights to use these components in an i 2 c system is granted provided that the system conforms to the i 2 c standard specification as defined by philips. stmicroelectronics group of companies australia - brazil - china - finland - france - germany - hong kong - india - italy - japan - malaysia - malta - morocco - sin gapore - spain sweden - switzerland - united kingdom - u.s.a. http://www.st.com


▲Up To Search▲   

 
Price & Availability of AN1276

All Rights Reserved © IC-ON-LINE 2003 - 2022  

[Add Bookmark] [Contact Us] [Link exchange] [Privacy policy]
Mirror Sites :  [www.datasheet.hk]   [www.maxim4u.com]  [www.ic-on-line.cn] [www.ic-on-line.com] [www.ic-on-line.net] [www.alldatasheet.com.cn] [www.gdcy.com]  [www.gdcy.net]


 . . . . .
  We use cookies to deliver the best possible web experience and assist with our advertising efforts. By continuing to use this site, you consent to the use of cookies. For more information on cookies, please take a look at our Privacy Policy. X